Hock and Schittkowski problem 036 (bound and linear constraints) go ASA AMPL short = 0; minimize obj: -x[1]*x[2]*x[3] ; subject to constr1: x[1] + 2*x[2] + 2*x[3] <= 72; subject to constr2: x[1] <= 20; subject to constr3: x[2] <= 11; subject to constr4: x[3] <= 42; let x[1] := 10; let x[2] := 10; let x[3] := 10; ]]> ############################################################################ # # Hock and Schittkowski problem 024 # ############################################################################